/* Removing inhertied psotions from all tags */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Seting universal font family to body*/
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
/* Removing list tyle from lis and navbar*/
ul,
nav {
  list-style: none;
}
/* General settings for all links*/
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
/* General settings for all sections*/
section {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 110px 100px;
}

/* Media Query Screen Size Desktop - Section*/
@media (max-width: 1000px) {
  section {
    padding: 100px 50px;
  }
}
/* Media Query Screen Size Laptop - Sections*/
@media (max-width: 600px) {
  section {
    padding: 125px 30px;
  }
}
/* General Settings for all section paragraphs*/
section p {
  max-width: 800px;
  text-align: center;
  margin-bottom: 35px;
  padding: 0 20px;
  line-height: 2;
}
/* General Settings for header*/
header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 35px 100px 0;
}
/* General Settings for header + h2*/
header h2 {
  font-weight: 600;
}
/* General Settings for header nav*/
header nav {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
/* General Settings for header nav list*/
header nav li {
  margin: 0 15px;
}

header nav li:hover {
  color: rgb(15, 84, 211);
}

header nav li:first-child {
  margin-left: 0;
}
header nav li:last-child {
  margin-right: 0;
}

/* Media Query Screen Size Desktop - Nav Bar*/
@media (max-width: 1000px) {
  header {
    padding: 20px 50px;
  }
}

/* Media Query Screen Size Laptop - Nav Bar*/
@media (max-width: 700px) {
  header {
    flex-direction: column;
  }
  header h2 {
    margin-bottom: 15px;
  }
  header nav li {
    margin: 0 7px;
  }
}
/* Jumbotron Settings*/
.banner-area {
  position: relative;
  justify-content: center;
  min-height: 100vh;
  color: #fff;
  text-align: center;
}
/* Jumbotron Image Settings*/
.banner-area .banner-img {
  background-image: url(/images/bg.jpg);
  position: absolute;
  top: 0;
  list-style-position: outside;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: -1;
}
/* Jumbotron Image Settings After*/
.banner-area .banner-img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.2;
}
/* Jumbotron Image Settings h1*/
.banner-area h1 {
  margin-bottom: 30px;
  font-size: 45px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-transform: uppercase;
}
/* Jumbotron Image Settings h3*/
.banner-area h3 {
  margin-bottom: 45px;
  font-size: 20px;
  font-weight: 400;
}
/* Jumbotron Image Settings h3*/
.banner-area a.banner-btn {
  padding: 15px 35px;
  background-color: #3a4971;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.6);
}

.banner-area a.banner-btn:hover,
.banner-area a.banner-btn:focus {
  background-color: rgb(15, 84, 211);
}

/* Media Query Screen Size Laptop/Desktop - Banner*/
@media (max-width: 800px) {
  .banner-area {
    min-height: 600px;
  }
  .banner-area h1 {
    font-size: 32px;
  }
  .banner-area h3 {
    font-size: 20px;
  }
  .banner-area a.banner-btn {
    padding: 15px 40px;
  }
}
/*Unordered List about content*/
ul.about-content {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
/*About content List*/
.about-content li {
  padding: 20px;
  height: 290px;
  border-radius: 3px;
  background-clip: content-box;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}
/*About content List*/
.about-left {
  flex-basis: 40%;
  background-image: url(/images/profile.jpg);
}
.about-right {
  flex-basis: 60%;
}
.about-area p {
  max-width: 800px;
  margin-bottom: 35px;
  line-height: 1.5;
  text-align: left;
  padding-left: 0;
}

#about h2 {
  color: #c97275;
}
.section-title {
  text-transform: uppercase;
  font-size: 40px;
  margin-bottom: 5%;
}
/* Media Query Screen Size Laptop/Desktop - left & right about section*/
@media (max-width: 1000px) {
  .about-left,
  .about-right {
    flex-basis: 80%;
  }
  .about-content li {
    padding: 8px;
  }
}

@media (max-width: 600px) {
  .about-right {
    min-height: 100vh;
    margin-bottom: 20px;
  }
}

@media (max-width: 580px) {
  .about-right {
    min-height: 80vh;
    margin-bottom: 200px;
    padding-bottom: 200px;
  }
}

@media (max-width: 700px) {
  .about-right {
    min-height: 70vh;
  }
}

/*Service settings ID*/
#services {
  background: #3a4971;
  background-attachment: fixed;
  color: white;
}
ul.services-content {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.services-content li {
  padding: 0 30px;
  flex-basis: 50%;
  text-align: center;
  margin-top: 25px;
}
.services-content li i {
  font-size: 50px;
  color: white;
  margin-bottom: 25px;
}
.services-content li h4 {
  font-size: 20px;
  margin-bottom: 25px;
}
.services-content li p {
  margin: 0;
}

/* Media Query Screen Size Laptop/Desktop - positioning and sizing for Service section*/

@media (max-width: 1000px) {
  .services-content li {
    flex-basis: 100%;
    margin-bottom: 35px;
  }
  .services-content li:last-child {
    margin-bottom: 0;
  }
  .services-content li p {
    padding: 0;
  }
}

/* Testimonials sections settings */

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  width: 100%;

  /* margin-bottom: 80px; */ /*This is optional*/
}
.item {
  max-width: 800px;
  background: white;
  line-height: 1.7;
  font-size: 1.2rem;
  margin: 0 auto !important;
  text-align: center;
  color: black;
  max-height: 100%;
}

#client {
  background-color: #f9e9de;
  color: black;
  list-style-type: disc;
}

#client h3 {
  padding-bottom: 30px;
  font-size: 40px;
}

#client ul {
  list-style-type: disc;
}

.filler {
  color: white;
  background-color: #ff7f50;
}
.filler h3 {
  padding-bottom: 30px;
  font-size: 40px;
}

#quote p {
  font-size: 25px;
}

#process {
  background: #3a4971;
  color: white;
  text-align: left;
  display: flex;
}

#process ul {
  list-style-type: none;
}

#process h3 {
  padding-bottom: 40px;
  font-size: 40px;
}

/* Conact sections settings */
ul.contact-content {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-content li {
  padding: 0 30px;
  flex-basis: 33%;
  text-align: center;
}
.contact-content li i {
  font-size: 50px;
  color: #3a4971;
  margin-bottom: 25px;
}

/* Media Query Screen Size Laptop/Desktop - positioning and sizing for Service section*/
@media (max-width: 1000px) {
  .contact-content li {
    flex-basis: 100%;
    margin-bottom: 65px;
  }
  .contact-content li:last-child {
    margin-bottom: 0;
  }
}

/* Footer sections settings */
footer {
  background: black;
}
footer h4 {
  display: inline-block;
}

footer nav {
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

footer ul {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

footer ul,
li {
  margin: 0;
  padding: 0;
}

a i:hover {
  color: rgb(15, 84, 211);
}

.icons a {
  display: inline-block;
  margin-right: 5px;
  text-align: center;
  font-size: 1.3em;
}

@media (max-width: 900px) {
  footer nav,
  footer nav ul,
  footer img {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer h4 {
    margin-bottom: 10px;
  }
  .icons {
    margin-top: 10px;
  }

  #logos {
    padding-left: 7%;
  }

  #logos img {
    max-width: 25%;
  }
}

span {
  font-size: 11px;
  color: black;
}

#logos img {
  width: 30%;
  display: -webkit-inline-flex;
  margin-left: 25px;
  padding: 10px;
}

#logos {
}
